secrets.tf 370 B

1234567
  1. # Set up some basic secret configuration. We don't want the secrets themselves in here. They'll have to be hand-entered. But this will set up the scaffolding.
  2. resource "aws_secretsmanager_secret" "ubuntu" {
  3. name = "Ubuntu"
  4. description = "Secrets required for provisioning Ubuntu systems."
  5. recovery_window_in_days = 30
  6. tags = merge(var.standard_tags, var.tags)
  7. }