AwsSecurityGroupSecurityGroupArgs

interface AwsSecurityGroupSecurityGroupArgs extends Omit<aws.ec2.SecurityGroupArgs, 'egress' | 'ingress' | 'name' | 'namePrefix' | 'vpcId'> { description?: Input<string | undefined>; region?: Input<string | undefined>; revokeRulesOnDelete?: Input<boolean | undefined>; tags?: Input<{ [key: string]: Input<string> } | undefined>; vpc: Input<string>; }

Hierarchy

  • SecurityGroupArgs, "egress" | "ingress" | "name" | "namePrefix" | "vpcId">
  • AwsSecurityGroupSecurityGroupArgs

Properties

description: Input<string | undefined>

Inherited from description

Security group description. Defaults to Managed by Pulumi. Cannot be "". NOTE: This field maps to the AWS GroupDescription attribute, for which there is no Update API. If you'd like to classify your security groups in a way that can be updated, use tags.

region: Input<string | undefined>

Inherited from region

Region where this resource will be managed. Defaults to the Region set in the provider configuration.

revokeRulesOnDelete: Input<boolean | undefined>

Inherited from revokeRulesOnDelete

Instruct the provider to revoke all of the Security Groups attached ingress and egress rules before deleting the rule itself. This is normally not needed, however certain AWS services such as Elastic Map Reduce may automatically add required rules to security groups used with the service, and those rules may contain a cyclic dependency that prevent the security groups from being destroyed without removing the dependency first. Default false.

tags: Input<{ [key: string]: Input<string> } | undefined>

Inherited from tags

Map of tags to assign to the resource. If configured with a provider defaultTags configuration block present, tags with matching keys will overwrite those defined at the provider-level.

vpc: Input<string>