1 Respuesta
- Más nuevo
- Más votos
- Más comentarios
0
Hello.
Since "document_format" is set to YAML, I think an error will occur if "mainSteps" is not written in YAML.
https://docs.aws.amazon.com/systems-manager/latest/userguide/documents-schemas-features.html#automation-doc-syntax-examples
https://registry.terraform.io/providers/hashicorp/aws/latest/docs/resources/ssm_document
resource "aws_ssm_association" "testa" { name = aws_ssm_document.test.name schedule_expression = "cron(0 0 0 ? * * *)" targets { key = "tag:run_ssm_document" values = ["yes"] } }
resource "aws_ssm_document" "test" {
name = "test"
document_format = "YAML"
document_type = "Automation"
content =<<DOC
schemaVersion:"0.3"
assumeRole: parameters: {}
mainSteps:
- name:runtestpose
action: "aws:executeScript"
inputs:
Runtime: python3.6
Handler: script_handler
Script: | -
def script_handler(events, context):
import boto3
ec2 = boto3.client('ec2')
print("hello world")
DOC
}
Contenido relevante
- OFICIAL DE AWSActualizada hace 2 años
- OFICIAL DE AWSActualizada hace 9 meses
- OFICIAL DE AWSActualizada hace un año
- ¿Cómo puedo hacer referencia a los parámetros de Systems Manager en los diferentes servicios de AWS?OFICIAL DE AWSActualizada hace un año