Skip to content

Instantly share code, notes, and snippets.

@wenqiglantz
Created January 29, 2023 00:30
Show Gist options
  • Save wenqiglantz/31b61079fc33f058917431b406721ea6 to your computer and use it in GitHub Desktop.
Save wenqiglantz/31b61079fc33f058917431b406721ea6 to your computer and use it in GitHub Desktop.
provider "github" {
token = var.pipeline_token
owner = "your-github-account"
}
......
resource "github_actions_environment_secret" "s3_bucket_name" {
repository = var.deploy_repo
environment = var.deploy_env
secret_name = "S3_BUCKET_NAME"
plaintext_value = module.static_site.s3_bucket
}
resource "github_actions_environment_secret" "cloudfront_distribution_id" {
repository = var.deploy_repo
environment = var.deploy_env
secret_name = "CLOUDFRONT_DISTRIBUTION_ID"
plaintext_value = module.static_site.cf_id
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment