i am creating rds server using terraform. I pass options group using list variable. The options groups variable in variable.tf like below
options = [
{
option_name = "SQLSERVER_BACKUP_RESTORE"
option_settings=[
{
name = "IAM_ROLE_ARN"
value = "${role_arn}"
},
]
},
i want replace the "${role_arn}" variable in main.tf . Can any one help with syntax ?