Skip to content

Latest commit

 

History

History
90 lines (68 loc) · 1.33 KB

aws_ses_identity_policy.md

File metadata and controls

90 lines (68 loc) · 1.33 KB

aws_ses_identity_policy

back

Index

Terraform

terraform {
  required_providers {
    aws = ">= 3.35.0"
  }
}

top

Example Usage

module "aws_ses_identity_policy" {
  source = "./modules/aws/r/aws_ses_identity_policy"

  # identity - (required) is a type of string
  identity = null
  # name - (required) is a type of string
  name = null
  # policy - (required) is a type of string
  policy = null
}

top

Variables

variable "identity" {
  description = "(required)"
  type        = string
}

variable "name" {
  description = "(required)"
  type        = string
}

variable "policy" {
  description = "(required)"
  type        = string
}

top

Resource

resource "aws_ses_identity_policy" "this" {
  # identity - (required) is a type of string
  identity = var.identity
  # name - (required) is a type of string
  name = var.name
  # policy - (required) is a type of string
  policy = var.policy
}

top

Outputs

output "id" {
  description = "returns a string"
  value       = aws_ses_identity_policy.this.id
}

output "this" {
  value = aws_ses_identity_policy.this
}

top