# 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. resource "aws_secretsmanager_secret" "ubuntu" { name = "Ubuntu" description = "Secrets required for provisioning Ubuntu systems." recovery_window_in_days = 30 tags = merge(var.standard_tags, var.tags) }