gpo / gpo-platform-configs

Infrastructure as Code for the GPO
MIT License
0 stars 0 forks source link

Add ssh keys to action secrets in secure.gpo.ca #2

Closed IanEdington closed 4 months ago

IanEdington commented 4 months ago

Plan

OpenTofu used the selected providers to generate the following execution plan. Resource actions are indicated with the following symbols:
  + create

OpenTofu will perform the following actions:

  # github_actions_secret.SSH_PRIVATE_KEY will be created
  + resource "github_actions_secret" "SSH_PRIVATE_KEY" {
      + created_at      = (known after apply)
      + id              = (known after apply)
      + plaintext_value = (sensitive value)
      + repository      = "secure.gpo.ca"
      + secret_name     = "SSH_PRIVATE_KEY"
      + updated_at      = (known after apply)
    }

  # github_actions_secret.SSH_PUBLIC_KEY will be created
  + resource "github_actions_secret" "SSH_PUBLIC_KEY" {
      + created_at      = (known after apply)
      + id              = (known after apply)
      + plaintext_value = (sensitive value)
      + repository      = "secure.gpo.ca"
      + secret_name     = "SSH_PUBLIC_KEY"
      + updated_at      = (known after apply)
    }

  # github_actions_secret.SSH_USER will be created
  + resource "github_actions_secret" "SSH_USER" {
      + created_at      = (known after apply)
      + id              = (known after apply)
      + plaintext_value = (sensitive value)
      + repository      = "secure.gpo.ca"
      + secret_name     = "SSH_USER"
      + updated_at      = (known after apply)
    }

Plan: 3 to add, 0 to change, 0 to destroy.