Skip to content

Commit

Permalink
fix external id white spaces (#514)
Browse files Browse the repository at this point in the history
  • Loading branch information
samuel-br authored Oct 19, 2022
1 parent 2878de4 commit e898a81
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion tests/integration/006_aws_credentials/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ resource "random_string" "random" {
resource "env0_aws_credentials" "my_role_by_arn" {
name = "Test Role arn ${random_string.random.result}"
arn = "Role ARN"
external_id = "External id"
external_id = "External-id"
}

data "env0_aws_credentials" "my_role_by_arn" {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ resource "env0_project" "test_project" {
resource "env0_aws_credentials" "credentials" {
name = "example-${random_string.random.result}"
arn = "Example role ARN"
external_id = "Example external id"
external_id = "Example-external-id"
}

data "env0_project_cloud_credentials" "project_cloud_credentials" {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ resource "env0_project" "project" {
resource "env0_aws_cost_credentials" "cost" {
name = "cost-${random_string.random.result}"
arn = "arn"
external_id = "externalid"
external_id = "external-id"
}

resource "env0_cost_credentials_project_assignment" "cost_project_assignment" {
Expand Down
2 changes: 1 addition & 1 deletion tests/integration/024_cloud_credentials/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ resource "random_string" "random" {
resource "env0_aws_credentials" "cred1" {
name = "Test Role arn1 ${random_string.random.result}"
arn = "Role ARN1"
external_id = "External id1"
external_id = "External-id1"
}

resource "env0_gcp_credentials" "cred2" {
Expand Down

0 comments on commit e898a81

Please sign in to comment.