github_actions_secret.test_secret: Refreshing state... [id=tf-test:SECRET_NAME]
github_actions_secret.test_secret_2: Refreshing state... [id=tf-test:SECRET_NMOHULCFXIMKVXTL]
Terraform used the selected providers to generate the following execution
plan. Resource actions are indicated with the following symbols:
+ create
- destroy
Terraform will perform the following actions:
# github_actions_secret.test_secret will be destroyed
# (because github_actions_secret.test_secret is not in configuration)
- resource "github_actions_secret" "test_secret" {
- created_at = "2023-11-01 23:02:52 +0000 UTC" -> null
- id = "tf-test:SECRET_NAME" -> null
- plaintext_value = (sensitive value) -> null
- repository = "tf-test" -> null
- secret_name = "SECRET_NAME" -> null
- updated_at = "2023-11-01 23:02:52 +0000 UTC" -> null
}
# github_actions_secret.test_secret_2 will be destroyed
# (because github_actions_secret.test_secret_2 is not in configuration)
- resource "github_actions_secret" "test_secret_2" {
- created_at = "2023-12-25 02:02:06 +0000 UTC" -> null
- id = "tf-test:SECRET_NMOHULCFXIMKVXTL" -> null
- plaintext_value = (sensitive value) -> null
- repository = "tf-test" -> null
- secret_name = (sensitive value) -> null
- updated_at = "2023-12-25 02:02:06 +0000 UTC" -> null
}
# github_actions_variable.test-variable will be created
+ resource "github_actions_variable" "test-variable" {
+ created_at = (known after apply)
+ id = (known after apply)
+ repository = "tf-test"
+ updated_at = (known after apply)
+ value = "hello world"
+ variable_name = "TEST_VARIABLE"
}
Plan: 1 to add, 0 to change, 2 to destroy.
github_actions_secret.test_secret_2: Destroying... [id=tf-test:SECRET_NMOHULCFXIMKVXTL]
github_actions_secret.test_secret: Destroying... [id=tf-test:SECRET_NAME]
github_actions_variable.test-variable: Creating...
github_actions_secret.test_secret_2: Destruction complete after 0s
github_actions_secret.test_secret: Destruction complete after 1s
github_actions_variable.test-variable: Creation complete after 3s [id=tf-test:TEST_VARIABLE]
Apply complete! Resources: 1 added, 0 changed, 2 destroyed.