Skip to content

Commit

Permalink
Forgot aws sql server name values
Browse files Browse the repository at this point in the history
  • Loading branch information
twerthi committed Aug 12, 2022
1 parent 2290871 commit 37d4c35
Showing 1 changed file with 27 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -129,6 +129,33 @@ resource "octopusdeploy_variable" "aws_variable_uk_primary_postgresql_name" {
owner_id = octopusdeploy_library_variable_set.aws_variable_set.id
}

resource "octopusdeploy_variable" "aws_variable_us_primary_sqlserver_name" {
name = "AWS.US.Primary.SQLServer.Name"
type = "String"
is_editable = true
is_sensitive = false
value = "od-solutions-mssql-uswest"
owner_id = octopusdeploy_library_variable_set.aws_variable_set.id
}

resource "octopusdeploy_variable" "aws_variable_us_secondary_sqlserver_name" {
name = "AWS.US.Secondary.SQLServer.Name"
type = "String"
is_editable = true
is_sensitive = false
value = "od-solutions-mssql-useast"
owner_id = octopusdeploy_library_variable_set.aws_variable_set.id
}

resource "octopusdeploy_variable" "aws_variable_uk_primary_sqlserver_name" {
name = "AWS.UK.Primary.SQLServer.Name"
type = "String"
is_editable = true
is_sensitive = false
value = "od-solutions-mssql-euwest"
owner_id = octopusdeploy_library_variable_set.aws_variable_set.id
}

resource "octopusdeploy_variable" "aws_variable_mariadb_server_admin_username" {
name = "AWS.MariaDB.Admin.Username"
type = "Sensitive"
Expand Down

0 comments on commit 37d4c35

Please sign in to comment.