scaleway.object.BucketWebsiteConfiguration
Explore with Pulumi AI
The scaleway.object.BucketWebsiteConfiguration
resource allows you to deploy and manage a bucket website with Scaleway Object storage.
Refer to the dedicated documentation for more information on bucket websites.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as scaleway from "@pulumiverse/scaleway";
const main = new scaleway.object.Bucket("main", {
name: "MyBucket",
acl: "public-read",
});
const mainBucketWebsiteConfiguration = new scaleway.object.BucketWebsiteConfiguration("main", {
bucket: main.id,
indexDocument: {
suffix: "index.html",
},
});
import pulumi
import pulumiverse_scaleway as scaleway
main = scaleway.object.Bucket("main",
name="MyBucket",
acl="public-read")
main_bucket_website_configuration = scaleway.object.BucketWebsiteConfiguration("main",
bucket=main.id,
index_document={
"suffix": "index.html",
})
package main
import (
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
"github.com/pulumiverse/pulumi-scaleway/sdk/go/scaleway/object"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
main, err := object.NewBucket(ctx, "main", &object.BucketArgs{
Name: pulumi.String("MyBucket"),
Acl: pulumi.String("public-read"),
})
if err != nil {
return err
}
_, err = object.NewBucketWebsiteConfiguration(ctx, "main", &object.BucketWebsiteConfigurationArgs{
Bucket: main.ID(),
IndexDocument: &object.BucketWebsiteConfigurationIndexDocumentArgs{
Suffix: pulumi.String("index.html"),
},
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Scaleway = Pulumiverse.Scaleway;
return await Deployment.RunAsync(() =>
{
var main = new Scaleway.Object.Bucket("main", new()
{
Name = "MyBucket",
Acl = "public-read",
});
var mainBucketWebsiteConfiguration = new Scaleway.Object.BucketWebsiteConfiguration("main", new()
{
Bucket = main.Id,
IndexDocument = new Scaleway.Object.Inputs.BucketWebsiteConfigurationIndexDocumentArgs
{
Suffix = "index.html",
},
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.scaleway.object.Bucket;
import com.pulumi.scaleway.object.BucketArgs;
import com.pulumi.scaleway.object.BucketWebsiteConfiguration;
import com.pulumi.scaleway.object.BucketWebsiteConfigurationArgs;
import com.pulumi.scaleway.object.inputs.BucketWebsiteConfigurationIndexDocumentArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
var main = new Bucket("main", BucketArgs.builder()
.name("MyBucket")
.acl("public-read")
.build());
var mainBucketWebsiteConfiguration = new BucketWebsiteConfiguration("mainBucketWebsiteConfiguration", BucketWebsiteConfigurationArgs.builder()
.bucket(main.id())
.indexDocument(BucketWebsiteConfigurationIndexDocumentArgs.builder()
.suffix("index.html")
.build())
.build());
}
}
resources:
main:
type: scaleway:object:Bucket
properties:
name: MyBucket
acl: public-read
mainBucketWebsiteConfiguration:
type: scaleway:object:BucketWebsiteConfiguration
name: main
properties:
bucket: ${main.id}
indexDocument:
suffix: index.html
With A Bucket Policy
import * as pulumi from "@pulumi/pulumi";
import * as scaleway from "@pulumiverse/scaleway";
const main = new scaleway.object.Bucket("main", {
name: "MyBucket",
acl: "public-read",
});
const mainBucketPolicy = new scaleway.object.BucketPolicy("main", {
bucket: main.id,
policy: JSON.stringify({
Version: "2012-10-17",
Id: "MyPolicy",
Statement: [{
Sid: "GrantToEveryone",
Effect: "Allow",
Principal: "*",
Action: ["s3:GetObject"],
Resource: ["<bucket-name>/*"],
}],
}),
});
const mainBucketWebsiteConfiguration = new scaleway.object.BucketWebsiteConfiguration("main", {
bucket: main.id,
indexDocument: {
suffix: "index.html",
},
});
import pulumi
import json
import pulumiverse_scaleway as scaleway
main = scaleway.object.Bucket("main",
name="MyBucket",
acl="public-read")
main_bucket_policy = scaleway.object.BucketPolicy("main",
bucket=main.id,
policy=json.dumps({
"Version": "2012-10-17",
"Id": "MyPolicy",
"Statement": [{
"Sid": "GrantToEveryone",
"Effect": "Allow",
"Principal": "*",
"Action": ["s3:GetObject"],
"Resource": ["<bucket-name>/*"],
}],
}))
main_bucket_website_configuration = scaleway.object.BucketWebsiteConfiguration("main",
bucket=main.id,
index_document={
"suffix": "index.html",
})
package main
import (
"encoding/json"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
"github.com/pulumiverse/pulumi-scaleway/sdk/go/scaleway/object"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
main, err := object.NewBucket(ctx, "main", &object.BucketArgs{
Name: pulumi.String("MyBucket"),
Acl: pulumi.String("public-read"),
})
if err != nil {
return err
}
tmpJSON0, err := json.Marshal(map[string]interface{}{
"Version": "2012-10-17",
"Id": "MyPolicy",
"Statement": []map[string]interface{}{
map[string]interface{}{
"Sid": "GrantToEveryone",
"Effect": "Allow",
"Principal": "*",
"Action": []string{
"s3:GetObject",
},
"Resource": []string{
"<bucket-name>/*",
},
},
},
})
if err != nil {
return err
}
json0 := string(tmpJSON0)
_, err = object.NewBucketPolicy(ctx, "main", &object.BucketPolicyArgs{
Bucket: main.ID(),
Policy: pulumi.String(json0),
})
if err != nil {
return err
}
_, err = object.NewBucketWebsiteConfiguration(ctx, "main", &object.BucketWebsiteConfigurationArgs{
Bucket: main.ID(),
IndexDocument: &object.BucketWebsiteConfigurationIndexDocumentArgs{
Suffix: pulumi.String("index.html"),
},
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using System.Text.Json;
using Pulumi;
using Scaleway = Pulumiverse.Scaleway;
return await Deployment.RunAsync(() =>
{
var main = new Scaleway.Object.Bucket("main", new()
{
Name = "MyBucket",
Acl = "public-read",
});
var mainBucketPolicy = new Scaleway.Object.BucketPolicy("main", new()
{
Bucket = main.Id,
Policy = JsonSerializer.Serialize(new Dictionary<string, object?>
{
["Version"] = "2012-10-17",
["Id"] = "MyPolicy",
["Statement"] = new[]
{
new Dictionary<string, object?>
{
["Sid"] = "GrantToEveryone",
["Effect"] = "Allow",
["Principal"] = "*",
["Action"] = new[]
{
"s3:GetObject",
},
["Resource"] = new[]
{
"<bucket-name>/*",
},
},
},
}),
});
var mainBucketWebsiteConfiguration = new Scaleway.Object.BucketWebsiteConfiguration("main", new()
{
Bucket = main.Id,
IndexDocument = new Scaleway.Object.Inputs.BucketWebsiteConfigurationIndexDocumentArgs
{
Suffix = "index.html",
},
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.scaleway.object.Bucket;
import com.pulumi.scaleway.object.BucketArgs;
import com.pulumi.scaleway.object.BucketPolicy;
import com.pulumi.scaleway.object.BucketPolicyArgs;
import com.pulumi.scaleway.object.BucketWebsiteConfiguration;
import com.pulumi.scaleway.object.BucketWebsiteConfigurationArgs;
import com.pulumi.scaleway.object.inputs.BucketWebsiteConfigurationIndexDocumentArgs;
import static com.pulumi.codegen.internal.Serialization.*;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
var main = new Bucket("main", BucketArgs.builder()
.name("MyBucket")
.acl("public-read")
.build());
var mainBucketPolicy = new BucketPolicy("mainBucketPolicy", BucketPolicyArgs.builder()
.bucket(main.id())
.policy(serializeJson(
jsonObject(
jsonProperty("Version", "2012-10-17"),
jsonProperty("Id", "MyPolicy"),
jsonProperty("Statement", jsonArray(jsonObject(
jsonProperty("Sid", "GrantToEveryone"),
jsonProperty("Effect", "Allow"),
jsonProperty("Principal", "*"),
jsonProperty("Action", jsonArray("s3:GetObject")),
jsonProperty("Resource", jsonArray("<bucket-name>/*"))
)))
)))
.build());
var mainBucketWebsiteConfiguration = new BucketWebsiteConfiguration("mainBucketWebsiteConfiguration", BucketWebsiteConfigurationArgs.builder()
.bucket(main.id())
.indexDocument(BucketWebsiteConfigurationIndexDocumentArgs.builder()
.suffix("index.html")
.build())
.build());
}
}
resources:
main:
type: scaleway:object:Bucket
properties:
name: MyBucket
acl: public-read
mainBucketPolicy:
type: scaleway:object:BucketPolicy
name: main
properties:
bucket: ${main.id}
policy:
fn::toJSON:
Version: 2012-10-17
Id: MyPolicy
Statement:
- Sid: GrantToEveryone
Effect: Allow
Principal: '*'
Action:
- s3:GetObject
Resource:
- <bucket-name>/*
mainBucketWebsiteConfiguration:
type: scaleway:object:BucketWebsiteConfiguration
name: main
properties:
bucket: ${main.id}
indexDocument:
suffix: index.html
Create BucketWebsiteConfiguration Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new BucketWebsiteConfiguration(name: string, args: BucketWebsiteConfigurationArgs, opts?: CustomResourceOptions);
@overload
def BucketWebsiteConfiguration(resource_name: str,
args: BucketWebsiteConfigurationArgs,
opts: Optional[ResourceOptions] = None)
@overload
def BucketWebsiteConfiguration(resource_name: str,
opts: Optional[ResourceOptions] = None,
bucket: Optional[str] = None,
index_document: Optional[BucketWebsiteConfigurationIndexDocumentArgs] = None,
error_document: Optional[BucketWebsiteConfigurationErrorDocumentArgs] = None,
project_id: Optional[str] = None,
region: Optional[str] = None)
func NewBucketWebsiteConfiguration(ctx *Context, name string, args BucketWebsiteConfigurationArgs, opts ...ResourceOption) (*BucketWebsiteConfiguration, error)
public BucketWebsiteConfiguration(string name, BucketWebsiteConfigurationArgs args, CustomResourceOptions? opts = null)
public BucketWebsiteConfiguration(String name, BucketWebsiteConfigurationArgs args)
public BucketWebsiteConfiguration(String name, BucketWebsiteConfigurationArgs args, CustomResourceOptions options)
type: scaleway:object:BucketWebsiteConfiguration
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
Parameters
- name string
- The unique name of the resource.
- args BucketWebsiteConfigurationArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name str
- The unique name of the resource.
- args BucketWebsiteConfigurationArgs
- The arguments to resource properties.
- opts ResourceOptions
- Bag of options to control resource's behavior.
- ctx Context
- Context object for the current deployment.
- name string
- The unique name of the resource.
- args BucketWebsiteConfigurationArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args BucketWebsiteConfigurationArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args BucketWebsiteConfigurationArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
Constructor example
The following reference example uses placeholder values for all input properties.
var bucketWebsiteConfigurationResource = new Scaleway.Object.BucketWebsiteConfiguration("bucketWebsiteConfigurationResource", new()
{
Bucket = "string",
IndexDocument = new Scaleway.Object.Inputs.BucketWebsiteConfigurationIndexDocumentArgs
{
Suffix = "string",
},
ErrorDocument = new Scaleway.Object.Inputs.BucketWebsiteConfigurationErrorDocumentArgs
{
Key = "string",
},
ProjectId = "string",
Region = "string",
});
example, err := object.NewBucketWebsiteConfiguration(ctx, "bucketWebsiteConfigurationResource", &object.BucketWebsiteConfigurationArgs{
Bucket: pulumi.String("string"),
IndexDocument: &object.BucketWebsiteConfigurationIndexDocumentArgs{
Suffix: pulumi.String("string"),
},
ErrorDocument: &object.BucketWebsiteConfigurationErrorDocumentArgs{
Key: pulumi.String("string"),
},
ProjectId: pulumi.String("string"),
Region: pulumi.String("string"),
})
var bucketWebsiteConfigurationResource = new BucketWebsiteConfiguration("bucketWebsiteConfigurationResource", BucketWebsiteConfigurationArgs.builder()
.bucket("string")
.indexDocument(BucketWebsiteConfigurationIndexDocumentArgs.builder()
.suffix("string")
.build())
.errorDocument(BucketWebsiteConfigurationErrorDocumentArgs.builder()
.key("string")
.build())
.projectId("string")
.region("string")
.build());
bucket_website_configuration_resource = scaleway.object.BucketWebsiteConfiguration("bucketWebsiteConfigurationResource",
bucket="string",
index_document={
"suffix": "string",
},
error_document={
"key": "string",
},
project_id="string",
region="string")
const bucketWebsiteConfigurationResource = new scaleway.object.BucketWebsiteConfiguration("bucketWebsiteConfigurationResource", {
bucket: "string",
indexDocument: {
suffix: "string",
},
errorDocument: {
key: "string",
},
projectId: "string",
region: "string",
});
type: scaleway:object:BucketWebsiteConfiguration
properties:
bucket: string
errorDocument:
key: string
indexDocument:
suffix: string
projectId: string
region: string
BucketWebsiteConfiguration Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.
The BucketWebsiteConfiguration resource accepts the following input properties:
- Bucket string
- The name of the bucket.
- Index
Document Pulumiverse.Scaleway. Object. Inputs. Bucket Website Configuration Index Document - The name of the index file for the website detailed below.
- Error
Document Pulumiverse.Scaleway. Object. Inputs. Bucket Website Configuration Error Document - The name of the error file for the website detailed below.
- Project
Id string - The project_id you want to attach the resource to
- Region string
- The region you want to attach the resource to
- Bucket string
- The name of the bucket.
- Index
Document BucketWebsite Configuration Index Document Args - The name of the index file for the website detailed below.
- Error
Document BucketWebsite Configuration Error Document Args - The name of the error file for the website detailed below.
- Project
Id string - The project_id you want to attach the resource to
- Region string
- The region you want to attach the resource to
- bucket String
- The name of the bucket.
- index
Document BucketWebsite Configuration Index Document - The name of the index file for the website detailed below.
- error
Document BucketWebsite Configuration Error Document - The name of the error file for the website detailed below.
- project
Id String - The project_id you want to attach the resource to
- region String
- The region you want to attach the resource to
- bucket string
- The name of the bucket.
- index
Document BucketWebsite Configuration Index Document - The name of the index file for the website detailed below.
- error
Document BucketWebsite Configuration Error Document - The name of the error file for the website detailed below.
- project
Id string - The project_id you want to attach the resource to
- region string
- The region you want to attach the resource to
- bucket str
- The name of the bucket.
- index_
document BucketWebsite Configuration Index Document Args - The name of the index file for the website detailed below.
- error_
document BucketWebsite Configuration Error Document Args - The name of the error file for the website detailed below.
- project_
id str - The project_id you want to attach the resource to
- region str
- The region you want to attach the resource to
- bucket String
- The name of the bucket.
- index
Document Property Map - The name of the index file for the website detailed below.
- error
Document Property Map - The name of the error file for the website detailed below.
- project
Id String - The project_id you want to attach the resource to
- region String
- The region you want to attach the resource to
Outputs
All input properties are implicitly available as output properties. Additionally, the BucketWebsiteConfiguration resource produces the following output properties:
- Id string
- The provider-assigned unique ID for this managed resource.
- Website
Domain string - The domain of the website endpoint. This is used to create DNS alias records.
- Website
Endpoint string - The website endpoint.
- Id string
- The provider-assigned unique ID for this managed resource.
- Website
Domain string - The domain of the website endpoint. This is used to create DNS alias records.
- Website
Endpoint string - The website endpoint.
- id String
- The provider-assigned unique ID for this managed resource.
- website
Domain String - The domain of the website endpoint. This is used to create DNS alias records.
- website
Endpoint String - The website endpoint.
- id string
- The provider-assigned unique ID for this managed resource.
- website
Domain string - The domain of the website endpoint. This is used to create DNS alias records.
- website
Endpoint string - The website endpoint.
- id str
- The provider-assigned unique ID for this managed resource.
- website_
domain str - The domain of the website endpoint. This is used to create DNS alias records.
- website_
endpoint str - The website endpoint.
- id String
- The provider-assigned unique ID for this managed resource.
- website
Domain String - The domain of the website endpoint. This is used to create DNS alias records.
- website
Endpoint String - The website endpoint.
Look up Existing BucketWebsiteConfiguration Resource
Get an existing BucketWebsiteConfiguration resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.
public static get(name: string, id: Input<ID>, state?: BucketWebsiteConfigurationState, opts?: CustomResourceOptions): BucketWebsiteConfiguration
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
bucket: Optional[str] = None,
error_document: Optional[BucketWebsiteConfigurationErrorDocumentArgs] = None,
index_document: Optional[BucketWebsiteConfigurationIndexDocumentArgs] = None,
project_id: Optional[str] = None,
region: Optional[str] = None,
website_domain: Optional[str] = None,
website_endpoint: Optional[str] = None) -> BucketWebsiteConfiguration
func GetBucketWebsiteConfiguration(ctx *Context, name string, id IDInput, state *BucketWebsiteConfigurationState, opts ...ResourceOption) (*BucketWebsiteConfiguration, error)
public static BucketWebsiteConfiguration Get(string name, Input<string> id, BucketWebsiteConfigurationState? state, CustomResourceOptions? opts = null)
public static BucketWebsiteConfiguration get(String name, Output<String> id, BucketWebsiteConfigurationState state, CustomResourceOptions options)
resources: _: type: scaleway:object:BucketWebsiteConfiguration get: id: ${id}
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- resource_name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- Bucket string
- The name of the bucket.
- Error
Document Pulumiverse.Scaleway. Object. Inputs. Bucket Website Configuration Error Document - The name of the error file for the website detailed below.
- Index
Document Pulumiverse.Scaleway. Object. Inputs. Bucket Website Configuration Index Document - The name of the index file for the website detailed below.
- Project
Id string - The project_id you want to attach the resource to
- Region string
- The region you want to attach the resource to
- Website
Domain string - The domain of the website endpoint. This is used to create DNS alias records.
- Website
Endpoint string - The website endpoint.
- Bucket string
- The name of the bucket.
- Error
Document BucketWebsite Configuration Error Document Args - The name of the error file for the website detailed below.
- Index
Document BucketWebsite Configuration Index Document Args - The name of the index file for the website detailed below.
- Project
Id string - The project_id you want to attach the resource to
- Region string
- The region you want to attach the resource to
- Website
Domain string - The domain of the website endpoint. This is used to create DNS alias records.
- Website
Endpoint string - The website endpoint.
- bucket String
- The name of the bucket.
- error
Document BucketWebsite Configuration Error Document - The name of the error file for the website detailed below.
- index
Document BucketWebsite Configuration Index Document - The name of the index file for the website detailed below.
- project
Id String - The project_id you want to attach the resource to
- region String
- The region you want to attach the resource to
- website
Domain String - The domain of the website endpoint. This is used to create DNS alias records.
- website
Endpoint String - The website endpoint.
- bucket string
- The name of the bucket.
- error
Document BucketWebsite Configuration Error Document - The name of the error file for the website detailed below.
- index
Document BucketWebsite Configuration Index Document - The name of the index file for the website detailed below.
- project
Id string - The project_id you want to attach the resource to
- region string
- The region you want to attach the resource to
- website
Domain string - The domain of the website endpoint. This is used to create DNS alias records.
- website
Endpoint string - The website endpoint.
- bucket str
- The name of the bucket.
- error_
document BucketWebsite Configuration Error Document Args - The name of the error file for the website detailed below.
- index_
document BucketWebsite Configuration Index Document Args - The name of the index file for the website detailed below.
- project_
id str - The project_id you want to attach the resource to
- region str
- The region you want to attach the resource to
- website_
domain str - The domain of the website endpoint. This is used to create DNS alias records.
- website_
endpoint str - The website endpoint.
- bucket String
- The name of the bucket.
- error
Document Property Map - The name of the error file for the website detailed below.
- index
Document Property Map - The name of the index file for the website detailed below.
- project
Id String - The project_id you want to attach the resource to
- region String
- The region you want to attach the resource to
- website
Domain String - The domain of the website endpoint. This is used to create DNS alias records.
- website
Endpoint String - The website endpoint.
Supporting Types
BucketWebsiteConfigurationErrorDocument, BucketWebsiteConfigurationErrorDocumentArgs
- Key string
- The object key name to use when a 4XX class error occurs.
- Key string
- The object key name to use when a 4XX class error occurs.
- key String
- The object key name to use when a 4XX class error occurs.
- key string
- The object key name to use when a 4XX class error occurs.
- key str
- The object key name to use when a 4XX class error occurs.
- key String
- The object key name to use when a 4XX class error occurs.
BucketWebsiteConfigurationIndexDocument, BucketWebsiteConfigurationIndexDocumentArgs
- Suffix string
A suffix that is appended to a request targeting a specific directory on the website endpoint.
Important: The suffix must not be empty and must not include a slash character. The routing is not supported.
- Suffix string
A suffix that is appended to a request targeting a specific directory on the website endpoint.
Important: The suffix must not be empty and must not include a slash character. The routing is not supported.
- suffix String
A suffix that is appended to a request targeting a specific directory on the website endpoint.
Important: The suffix must not be empty and must not include a slash character. The routing is not supported.
- suffix string
A suffix that is appended to a request targeting a specific directory on the website endpoint.
Important: The suffix must not be empty and must not include a slash character. The routing is not supported.
- suffix str
A suffix that is appended to a request targeting a specific directory on the website endpoint.
Important: The suffix must not be empty and must not include a slash character. The routing is not supported.
- suffix String
A suffix that is appended to a request targeting a specific directory on the website endpoint.
Important: The suffix must not be empty and must not include a slash character. The routing is not supported.
Import
Bucket website configurations can be imported using the {region}/{bucketName}
identifier, as shown below:
bash
$ pulumi import scaleway:object/bucketWebsiteConfiguration:BucketWebsiteConfiguration some_bucket fr-par/some-bucket
~> Important: The project_id
attribute has a particular behavior with s3 products because the s3 API is scoped by project.
If you are using a project different from the default one, you have to specify the project ID at the end of the import command.
bash
$ pulumi import scaleway:object/bucketWebsiteConfiguration:BucketWebsiteConfiguration some_bucket fr-par/some-bucket@xxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxx
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- scaleway pulumiverse/pulumi-scaleway
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
scaleway
Terraform Provider.