generated from hashicorp/terraform-provider-scaffolding
-
Notifications
You must be signed in to change notification settings - Fork 43
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: [CDS-101927]: Categorize CD + Pipeline Connectors (#1105)
* feat: [CDS-101927]: Categorize CD Cloud Providers Connectors * feat: [CDS-101927]: Categorize CD Artifact Repositories Connectors * feat: [CDS-101927]: Categorize CD Code Repositories Connectors * fix: [CDS-101927]: CD http helm ConnectorTest * fix: [CDS-101927]: Add Cd Pre-requisite * fix: [CDS-101927]: Fix Artifact Connector test * fix: [CDS-101927]: Fix Artifact Connector test * fix: [CDS-101927]: Fix Artifact Connector test * fix: [CDS-101927]: Skip two Test for now. * fix: [CDS-101927]: Fix HTTP HELM test
- Loading branch information
Showing
87 changed files
with
883 additions
and
181 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,50 @@ | ||
# main.tf | ||
|
||
terraform { | ||
required_providers { | ||
harness = { | ||
source = "harness/harness" | ||
} | ||
} | ||
} | ||
|
||
resource "harness_platform_secret_text" "TEST_spot_account_id" { | ||
identifier = "TEST_spot_account_id" | ||
name = "TEST_spot_account_id" | ||
description = "This is a test Spot secret text" | ||
tags = ["foo:bar"] | ||
secret_manager_identifier = "harnessSecretManager" | ||
value_type = "Inline" | ||
value = "my_secret_value" | ||
} | ||
resource "harness_platform_secret_text" "TEST_spot_api_token" { | ||
identifier = "TEST_spot_api_token" | ||
name = "TEST_spot_api_token" | ||
description = "This is a test Spot secret text" | ||
tags = ["foo:bar"] | ||
secret_manager_identifier = "harnessSecretManager" | ||
value_type = "Inline" | ||
value = "my_secret_value" | ||
} | ||
|
||
resource "harness_platform_secret_text" "TEST_api_token_ref" { | ||
identifier = "TEST_api_token_ref" | ||
name = "TEST_api_token_ref" | ||
description = "This is a test Spot secret text" | ||
tags = ["foo:bar"] | ||
secret_manager_identifier = "harnessSecretManager" | ||
value_type = "Inline" | ||
value = "my_secret_value" | ||
} | ||
|
||
resource "harness_platform_secret_text" "doNotDeleteHSM" { | ||
identifier = "doNotDeleteHSM" | ||
name = "doNotDeleteHSM" | ||
description = "This is a test secret text" | ||
tags = ["foo:bar"] | ||
secret_manager_identifier = "harnessSecretManager" | ||
value_type = "Inline" | ||
value = "my_secret_value" | ||
} | ||
|
||
# Additional resources can be added as needed |
Oops, something went wrong.