Skip to content

Commit

Permalink
Merge pull request #35270 from hashicorp/d-db_instance-examples
Browse files Browse the repository at this point in the history
Change name of custom profile in `aws_db_instance` example for clarity
  • Loading branch information
justinretzolk committed Jan 18, 2024
2 parents 1d2e950 + 1219cd3 commit a98686f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions website/docs/r/db_instance.html.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -144,8 +144,8 @@ data "aws_kms_key" "by_id" {
resource "aws_db_instance" "example" {
allocated_storage = 500
auto_minor_version_upgrade = false # Custom for SQL Server does not support minor version upgrades
custom_iam_instance_profile = "AWSRDSCustomSQLServerInstanceRole" # Instance profile is required for Custom for SQL Server. See: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/custom-setup-sqlserver.html#custom-setup-sqlserver.iam
auto_minor_version_upgrade = false # Custom for SQL Server does not support minor version upgrades
custom_iam_instance_profile = "AWSRDSCustomSQLServerInstanceProfile" # Instance profile is required for Custom for SQL Server. See: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/custom-setup-sqlserver.html#custom-setup-sqlserver.iam
backup_retention_period = 7
db_subnet_group_name = local.db_subnet_group_name # Copy the subnet group from the RDS Console
engine = data.aws_rds_orderable_db_instance.custom-sqlserver.engine
Expand Down

0 comments on commit a98686f

Please sign in to comment.