Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save izmilia-prastika/5508996eb556677aad08bd541284cae1 to your computer and use it in GitHub Desktop.
Save izmilia-prastika/5508996eb556677aad08bd541284cae1 to your computer and use it in GitHub Desktop.
Contoh Struktur Provider AWS
provider "aws" {
access_key = "${var.aws_access_key}"
secret_key = "${var.aws_secret_key}"
region = "${var.aws_region}"
}
resource "aws_vpc" "main" {
cidr_block = "10.0.0.0/16"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment