mirror of
https://github.com/farcasclaudiu/terraform-course.git
synced 2026-06-28 23:02:12 +03:00
module-for-each demo
This commit is contained in:
@@ -0,0 +1,3 @@
|
||||
output "arn" {
|
||||
value = aws_ssm_parameter.parameter.arn
|
||||
}
|
||||
@@ -0,0 +1,5 @@
|
||||
resource "aws_ssm_parameter" "parameter" {
|
||||
name = var.name
|
||||
type = "String"
|
||||
value = var.value
|
||||
}
|
||||
@@ -0,0 +1,2 @@
|
||||
variable "name" {}
|
||||
variable "value" {}
|
||||
Reference in New Issue
Block a user