Skip to content

Latest commit

 

History

History
165 lines (134 loc) · 3 KB

alicloud_fc_trigger.md

File metadata and controls

165 lines (134 loc) · 3 KB

alicloud_fc_trigger

back

Index

Terraform

terraform {
  required_providers {
    alicloud = ">= 1.120.0"
  }
}

top

Example Usage

module "alicloud_fc_trigger" {
  source = "./modules/alicloud/r/alicloud_fc_trigger"

  # config - (optional) is a type of string
  config = null
  # config_mns - (optional) is a type of string
  config_mns = null
  # function - (required) is a type of string
  function = null
  # name - (optional) is a type of string
  name = null
  # name_prefix - (optional) is a type of string
  name_prefix = null
  # role - (optional) is a type of string
  role = null
  # service - (required) is a type of string
  service = null
  # source_arn - (optional) is a type of string
  source_arn = null
  # type - (required) is a type of string
  type = null
}

top

Variables

variable "config" {
  description = "(optional)"
  type        = string
  default     = null
}

variable "config_mns" {
  description = "(optional)"
  type        = string
  default     = null
}

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

variable "name" {
  description = "(optional)"
  type        = string
  default     = null
}

variable "name_prefix" {
  description = "(optional)"
  type        = string
  default     = null
}

variable "role" {
  description = "(optional)"
  type        = string
  default     = null
}

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

variable "source_arn" {
  description = "(optional)"
  type        = string
  default     = null
}

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

top

Resource

resource "alicloud_fc_trigger" "this" {
  # config - (optional) is a type of string
  config = var.config
  # config_mns - (optional) is a type of string
  config_mns = var.config_mns
  # function - (required) is a type of string
  function = var.function
  # name - (optional) is a type of string
  name = var.name
  # name_prefix - (optional) is a type of string
  name_prefix = var.name_prefix
  # role - (optional) is a type of string
  role = var.role
  # service - (required) is a type of string
  service = var.service
  # source_arn - (optional) is a type of string
  source_arn = var.source_arn
  # type - (required) is a type of string
  type = var.type
}

top

Outputs

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

output "last_modified" {
  description = "returns a string"
  value       = alicloud_fc_trigger.this.last_modified
}

output "name" {
  description = "returns a string"
  value       = alicloud_fc_trigger.this.name
}

output "trigger_id" {
  description = "returns a string"
  value       = alicloud_fc_trigger.this.trigger_id
}

output "this" {
  value = alicloud_fc_trigger.this
}

top